home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / SCRIPTZ / TITLEBAR.ZIP / titlebar.txt
Text File  |  1996-12-22  |  838b  |  28 lines

  1. Simple Titlebar OnLine Timer by DonDon 1996
  2.  
  3.  
  4. /timeon starts the timer ...
  5. /timeoff stops the timer ...
  6. /dong messages all Channels you are on , you current online time
  7. /seconds { should not type this manually } 
  8.  
  9.  
  10. Please paste these to popups
  11. Titlebar Timer
  12. .on:/timeon
  13. .off:/timeoff
  14. .show:/dong
  15.  
  16.  
  17. Please paste these to Aliases
  18.  
  19. timeon { timer2050 0 1 /seconds | %days = 0 | %hours = 0 | %minutes = 0 | %seconds = 0 }
  20. seconds { 
  21.   inc %seconds 1 | titlebar %days days %hours hrs %minutes mins %seconds secs
  22.   if (%seconds = 60) { %seconds = 0 | inc %minutes 1 }
  23.   if (%minutes = 60) { %minutes = 0 | inc %hours 1 | dong }
  24.   if (%hours > 24) { %hours = 0 | inc %days 1 }
  25. }
  26. timeoff { timer2050 off }
  27. dong { ame I have Been online %days days , %hours hours , %minutes minutes and %seconds seconds =) | return 1 }
  28.